home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 52 / Amiga Format AFCD52 (Issue 136, May 2000).iso / -in_the_mag- / multitasking / priorities / priman / source / system.h < prev    next >
C/C++ Source or Header  |  2000-03-05  |  1KB  |  47 lines

  1. /*
  2.  *        Task Priority Manager
  3.  *        Copyright 1993, 1994 Barry McConnell
  4.  *        bmccnnll@tcd.ie
  5.  *
  6.  *        PriMan's system header file. Contains all the external (system) header
  7.  *        files that are referenced by the code. I keep this separate to make it
  8.  *        easy to build a GST based on exactly these headers.
  9.  *
  10.  *        Set tab stops to 4 when editing this file.
  11.  */
  12.  
  13. #include <exec/types.h>
  14. #include <exec/execbase.h>
  15. #include <exec/memory.h>
  16. #include <dos/dos.h>
  17. #include <dos/dosextens.h>
  18. #include <graphics/gfxbase.h>
  19. #include <graphics/text.h> 
  20. #include <intuition/gadgetclass.h>
  21. #include <intuition/intuition.h>
  22. #include <intuition/intuitionbase.h>
  23. #include <intuition/imageclass.h>
  24. #include <intuition/screens.h>
  25. #include <libraries/amigaguide.h>
  26. #include <libraries/asl.h>
  27. #include <libraries/commodities.h>
  28. #include <libraries/gadtools.h>
  29. #include <workbench/icon.h>
  30. #include <workbench/startup.h>
  31. #include <workbench/workbench.h>
  32.  
  33. #include <proto/amigaguide.h>
  34. #include <proto/asl.h>
  35. #include <proto/commodities.h>
  36. #include <proto/diskfont.h>
  37. #include <proto/dos.h>
  38. #include <proto/exec.h>
  39. #include <proto/gadtools.h>
  40. #include <proto/graphics.h>
  41. #include <proto/icon.h>
  42. #include <proto/intuition.h>
  43. #include <proto/wb.h>
  44. #include <clib/alib_protos.h>
  45.  
  46. #include <string.h>
  47.